type runtime.pollDesc
31 uses
runtime (current package)
netpoll.go#L75: type pollDesc struct {
netpoll.go#L77: link *pollDesc // in pollcache, protected by pollcache.lock
netpoll.go#L114: self *pollDesc // storage for indirect interface. See (*pollDesc).makeArg.
netpoll.go#L142: func (pd *pollDesc) info() pollInfo {
netpoll.go#L153: func (pd *pollDesc) publishInfo() {
netpoll.go#L176: func (pd *pollDesc) setEventErr(b bool, seq uintptr) {
netpoll.go#L194: first *pollDesc
netpoll.go#L244: func poll_runtime_pollOpen(fd uintptr) (*pollDesc, int) {
netpoll.go#L281: func poll_runtime_pollClose(pd *pollDesc) {
netpoll.go#L297: func (c *pollCache) free(pd *pollDesc) {
netpoll.go#L323: func poll_runtime_pollReset(pd *pollDesc, mode int) int {
netpoll.go#L342: func poll_runtime_pollWait(pd *pollDesc, mode int) int {
netpoll.go#L364: func poll_runtime_pollWaitCanceled(pd *pollDesc, mode int) {
netpoll.go#L372: func poll_runtime_pollSetDeadline(pd *pollDesc, d int64, mode int) {
netpoll.go#L452: func poll_runtime_pollUnblock(pd *pollDesc) {
netpoll.go#L494: func netpollready(toRun *gList, pd *pollDesc, mode int32) int32 {
netpoll.go#L512: func netpollcheckerr(pd *pollDesc, mode int32) int {
netpoll.go#L548: func netpollblock(pd *pollDesc, mode int32, waitio bool) bool {
netpoll.go#L591: func netpollunblock(pd *pollDesc, mode int32, ioready bool, delta *int32) *g {
netpoll.go#L622: func netpolldeadlineimpl(pd *pollDesc, seq uintptr, read, write bool) {
netpoll.go#L665: netpolldeadlineimpl(arg.(*pollDesc), seq, true, true)
netpoll.go#L669: netpolldeadlineimpl(arg.(*pollDesc), seq, true, false)
netpoll.go#L673: netpolldeadlineimpl(arg.(*pollDesc), seq, false, true)
netpoll.go#L688: func (c *pollCache) alloc() *pollDesc {
netpoll.go#L691: const pdSize = unsafe.Sizeof(pollDesc{})
netpoll.go#L700: pd := (*pollDesc)(add(mem, i*pdSize))
netpoll.go#L719: func (pd *pollDesc) makeArg() (i any) {
netpoll.go#L727: pdEface any = (*pollDesc)(nil)
netpoll_epoll.go#L49: func netpollopen(fd uintptr, pd *pollDesc) uintptr {
netpoll_epoll.go#L62: func netpollarm(pd *pollDesc, mode int) {
netpoll_epoll.go#L164: pd := (*pollDesc)(tp.pointer())
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |